home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Interactive Reference Guide
/
C-C++ Interactive Reference Guide.iso
/
c_ref
/
csource2
/
sclib_1
/
1_7
/
v7n7063a.txt
< prev
next >
Wrap
Text File
|
1995-11-01
|
255b
|
19 lines
Listing 5
#include <stdio.h>
#include <string.h>
void write_string (char *);
int main (void)
{
write_string("This is a test.");
}
void write_string(char *string)
{
write(fileno(stdout), string, strlen(string));
}